home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib2 / v_02_03 / 2n03070a < prev    next >
Encoding:
Text File  |  1995-11-01  |  131 b   |  9 lines

  1. /* Flush open fine FAT information to disk: */
  2.  
  3. #include <io.h>
  4.  
  5. int commitFile( int hFile)
  6. {
  7.     return close(dup(hFile));
  8. }
  9.